go/types.Signature.scope (field)

7 uses

	go/types (current package)
		object.go#L347: func (obj *Func) Scope() *Scope { return obj.typ.(*Signature).scope }
		signature.go#L24: 	scope    *Scope         // function scope for package-local and non-instantiated signatures; nil otherwise
		signature.go#L106: 	sig.scope = check.scope
		stmt.go#L29: 	sig.scope.pos = body.Pos()
		stmt.go#L30: 	sig.scope.end = body.End()
		stmt.go#L40: 		scope: sig.scope,
		stmt.go#L58: 	check.usage(sig.scope)